home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / TPROFEXM.PAK / PLOST.C < prev    next >
C/C++ Source or Header  |  1997-05-06  |  580b  |  27 lines

  1. /* Copyright (c) 1990, 1992, Borland International */
  2. #include <stdio.h>
  3. #include <dos.h>   /* contains prototype for delay() */
  4. void lost_in_town(void);
  5. void main(void)
  6. {
  7.     printf("Entering main\n");
  8.     lost_in_town();
  9.     delay(1000);
  10.     printf("Leaving main\n\n");
  11.     delay(1000);
  12. }
  13.  
  14. void lost_in_town(void)
  15. {
  16.     int i;
  17.     printf("Looking for highway...\n");
  18.     delay(100);
  19.     for (i=0; i<10; i++)
  20.     {
  21.         printf("Ask for directions\n");
  22.         printf("Wrong turn\n\n");
  23.         delay(1000);
  24.     }
  25.     printf("On the road again\n");
  26. }
  27.